shell.status("Running", cmd.to_string())
}));
- if let Err(e) = ExecEngine::exec(&mut ProcessEngine, cmd) {
+ if let Err(e) = ExecEngine::exec(&ProcessEngine, cmd) {
errors.push(e);
if !options.no_fail_fast {
break
try!(config.shell().verbose(|shell| {
shell.status("Running", p.to_string())
}));
- if let Err(e) = ExecEngine::exec(&mut ProcessEngine, p) {
+ if let Err(e) = ExecEngine::exec(&ProcessEngine, p) {
errors.push(e);
if !options.no_fail_fast {
return Ok(errors);